home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 9 / Night Owl CD-ROM (NOPV9) (Night Owl Publisher) (1993).ISO / 015a / strdel.zip / RM.BAT
DOS Batch File  |  1993-02-12  |  257b  |  16 lines

  1. @echo off
  2. if "%1"=="" goto MSG
  3. if "%1"=="/?" goto MSG
  4. :START
  5. if "%1"=="" goto END
  6. erase  %1
  7. shift
  8. goto START
  9. :MSG
  10. echo Deletes the files listed
  11. echo on the command line.
  12. echo Wildcards are allowed.
  13. echo RM file [file [file...]]
  14. :END
  15. @echo on
  16.